home *** CD-ROM | disk | FTP | other *** search
-
- /*
- Copyright 1993 Jeremy Slade.
-
- You are free to use all or any parts of the Locus project
- however you wish, just give credit where credit is due.
- The author (Jeremy Slade) shall not be held responsible
- for any damages that result out of use or misuse of any
- part of this project.
-
- */
-
- /*
- Project: Locus
-
- Class: InfoPanel
-
- Description:
-
- Original Author: Jeremy Slade
-
- Revision History:
- Created
- V.101 JGS Mon Feb 8 22:20:06 GMT-0700 1993
-
- */
-
-
- #ifndef InfoPanel_h
- #define InfoPanel_h
-
- #define InfoPanel_VERSION (101)
-
-
- #import <appkit/Panel.h>
-
-
- @interface InfoPanel : Panel
- {
- id versionField;
- }
-
- + initialize;
-
- - runInfoPanel:sender;
-
- - (BOOL)canBecomeKeyWindow;
- - (BOOL)canBecomeMainWindow;
-
- @end
-
- @interface Object ( InfoPanelDelegate )
- - infoPanelDidRun:sender;
- @end
-
-
- #endif // InfoPanel_h
-
-